home *** CD-ROM | disk | FTP | other *** search
- unit FPTShellLocatorEditor; // Copyright ⌐ 1996-2001 Plasmatech Software Design. All rights reserved.
- {
- Shell Control Pack
- Version 1.6
-
- Implements the shell locator property editor.
-
- History
- ===================================================================================================
- V1.6 2Jul01 Delphi 6 release, no changes.
- V1.5c 30Mar01 No changes.
- V1.5b 12Dec00 No changes.
- V1.5a 14May00 No changes.
- V1.5 3Mar00 C++Builder 5 release, no changes.
- V1.4a 15Dec99 No changes.
- V1.4 14Sep99 Delphi 5 release, no changes.
- V1.3h 29Mar99 No changes.
- V1.3g 1Dec98 Added SetHelpInfo method.
- V1.3f 12Jul98 Delphi 4 release, no changes.
- V1.3e 22Apr98 No changes.
- V1.3d 18Apr98 No changes.
- V1.3c 16Mar98 C++Builder 3 support.
- V1.3b 7Feb98 No changes.
- V1.3a 7Jan98 Minor form changes to support new TPTGroup control features.
- V1.3 28Nov97 No changes.
- V1.2b 12Oct97 No changes.
- V1.2a 5Oct97 No changes.
- V1.2 6Sep97 No changes.
- V1.1a 6Jul97 Added NT types to the csidl combobox.
- V1.1 26Jun97 No changes.
- V1.0c 31May97 No changes.
- V1.0b 17May97 Fixed bugs. Delphi 3 support.
- V1.0a 1May97 No changes.
- V1.0 21Apr97 Released version 1.0
- }
-
- {$INCLUDE PTCompVer.inc}
-
- {$RANGECHECKS OFF} {$OVERFLOWCHECKS OFF} {$WRITEABLECONST OFF}
- {$BOOLEVAL OFF} {$EXTENDEDSYNTAX ON} {$TYPEDADDRESS ON}
-
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- UPTFrame, StdCtrls, UPTShellControls, FPTOpenDlg, FPTFolderBrowseDlg, UPTShellUtils;
-
- type
- TFrmShellLocatorEditor = class(TForm)
- public
- property Locator: TPTShellLocator read mLocator write SetLocator;
- class procedure SetHelpInfo( aHelpFile: String; aHelpId: Integer );
- end;
-
- var
- FrmShellLocatorEditor: TFrmShellLocatorEditor;
-
- function GetCSIDLStr( id: TCSIDL ): String;
-
- implementation
-